home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / wlib11_4.zip / HEADERS.EXE / CURSOR.H < prev    next >
Text File  |  1991-02-27  |  614b  |  27 lines

  1. /*** CURSOR .H   ***/
  2.  
  3. /* Written By P.A. McKenzie
  4.  * The C Window Library
  5.  * Copyright (C) 1990   All Rights Reserved
  6. */
  7. #ifndef CURSOR_DEF
  8. #define CURSOR_DEF
  9. #include "proto.h"
  10. #define CREATE_CURSOR_SHAPE(beginline,endline)  ((beginline)<<4+(endline))
  11. #define THIN          0x0B0C
  12. #define BLOCK         0x0007
  13. #define INVISIBLE     0x1F00
  14.  
  15. #if __cplusplus
  16.   extern "C" {
  17. #endif
  18. void GetCursorShape P((unsigned *, unsigned *));
  19. void ChangeCursor P((unsigned, unsigned));
  20. void BlockCursor P((void));
  21. void ThinCursor P((void));
  22. void HideCursor P((void));
  23. #if _cplusplus
  24.   }
  25. #endif
  26. #endif
  27.